home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Interactive Reference Guide / C-C++ Interactive Reference Guide.iso / c_ref / csource2 / sclib_1 / 1_2 / v7n2035a.txt < prev    next >
Encoding:
Text File  |  1995-11-01  |  340 b   |  19 lines

  1.  
  2. /* Define machine inputs */
  3. #define I_ESC 0
  4. #define I_Q 1
  5. #define I_S 2
  6. /* Define machine actions */
  7. #define A_DO_ESC 0
  8. #define A_ESC_Q 1
  9. #define A_ESC_S 2
  10. #define A_PASSTHRU 3  /* default */
  11.  
  12. esc_matrix[2][3] = {
  13. /* State 'S_START' */
  14. { I_ESC, A_PASSTHRU, A_PASSTHRU },
  15. /* State 'S_ESC' */
  16. { A_PASSTHRU, I_Q, I_S },
  17. };
  18.  
  19.